page.tsx 275 B

12345678910111213141516
  1. import React from 'react'
  2. import Main from '@/app/components/datasets/hit-testing'
  3. type Props = {
  4. params: { datasetId: string }
  5. }
  6. const HitTesting = ({
  7. params: { datasetId },
  8. }: Props) => {
  9. return (
  10. <Main datasetId={datasetId} />
  11. )
  12. }
  13. export default HitTesting